home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d22 / ascmenu.arc / README.NOW < prev    next >
Text File  |  1990-08-16  |  4KB  |  72 lines

  1.  
  2.  
  3.           8/16/90
  4.           
  5.           Author's note:
  6.           I wrote this menu program because I was tired of looking 
  7.           for a SIMPLE menu program that anyone could use without 
  8.           having a master's degree. The entire menu is done in ascii 
  9.           using simple batch files. I have included a couple of batch
  10.           files which will give you an example of how to write the
  11.           batch files to run your programs from the on-screen menu.
  12.           "A.BAT" which is a simple format command for drive "A",
  13.           "B.BAT" does a simple check disk of drive C: and "Z.BAT"
  14.           takes you to the root directory of C: 
  15.           
  16.           To add your own menu selections, just use a simple text 
  17.           editor or ascii word processor to add in your selections.
  18.           Follow the example presented in the "A.BAT" file to add
  19.           your series of commands in order to run the programs that
  20.           you enter in your selections. Always include the last 
  21.           couple of lines in order to return to the menu for your 
  22.           next selection. Note that selection "A" on the menu is
  23.           a batch file called "A.BAT", selection "B" would be a
  24.           batch file called "B.BAT". All you are really doing is
  25.           calling up batch files while in the "MENU" directory.
  26.           
  27.                 A sample batch file looks like this:
  28.                 
  29.                              echo off
  30.                              format a:
  31.                              cd\
  32.                              cls
  33.                              menu.bat
  34.                              
  35.           The menu has 26 selections. If you want more you should
  36.           probably buy one of those high dollar programs. Note: If
  37.           you want the menu to be in color, just load it into a program
  38.           such as The Draw @ and edit it into ansi format, using any
  39.           colors you want. This is also a good example of format that
  40.           you can use in order to create your own menu programs. You
  41.           "could", if you wanted, have a selection entitled "GAMES"
  42.           or something which took you to a second menu screen with
  43.           all your game selections. The possibilities are endless.                   
  44.           
  45.           To install this program, simply type install. The program will
  46.           install itself and go to the menu screen. If you want the 
  47.           program to present itself at boot up, just add the line menu.bat
  48.           as the last line of your autoexec.bat file also you might want
  49.           to add the \menu directory to your path so you can invoke it
  50.           from anywhere in DOS.
  51.           
  52.           This is not a free program. It took about two hours to create.
  53.           I have found that most people don't contribute to shareware
  54.           authors. If you find this very easy to use program of value,
  55.           think about sending me $5.00 (or whatever). Businesses may use
  56.           this pgrm on as many machines as they like with no additional
  57.           charge. Pass it around. Upload it to as many BBS as you can.
  58.           This is my first attempt at anything.
  59.           
  60.           One last thing: The entire program is simple batch files and
  61.           ascii text. There is nothing here that can harm a machine. I
  62.           do not, however, accept any liability for any damage that you
  63.           or anyone else does while using this menu. Forwarned is 
  64.           Forarmed, as they say. Enjoy !
  65.           
  66.           Mike Turner
  67.           4213 S. Fannin
  68.           Amarillo, Tx  79110
  69.           
  70.           BBS: 806-353-4188
  71.           
  72.